home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------*
- | File: BEGINEND.h - Include file for BEGINEND.c |
- *------------------------------------------------*/
-
- /**
- | #define's
- | - parameters of the button gadgets
- | - parameters of the checkbutton gadget
- | - parameters of the scroller gadget
- | - parameters of the "break window"gadgets
- | - parameters of the output window
- | - parameters of the AutoRequester
- **/
-
- #define NUM_BUT 5
- #define GAD_LEFT 4
- #define GAD_TOP 153
- #define GAD_WIDTH 61
- #define GAD_HEIGHT 25
- #define GAD_DX1 72
- #define GAD_DX2 347
-
- #define CBG_LEFT 330
- #define CBG_TOP 161
- #define CBG_WIDTH 26
- #define CBG_HEIGHT 11
-
- #define SCR_TOP 3
- #define SCR_LEFT 612
- #define SCR_WIDTH 16
- #define SCR_HEIGHT 145
- #define ARROW_HEIGHT 8
-
- #define BKT_XOFFSET 14
- #define BKT_YOFFSET 10
-
- #define WIN_LEFT 0
- #define WIN_TOP 0
- #define WIN_WIDTH 640
- #define WIN_HEIGHT 185
- #define WIN_IDCMP0 IDCMP_REFRESHWINDOW | SCROLLERIDCMP
- #define WIN_IDCMP1 ARROWIDCMP | MENUPICK
- #define WIN_IDCMP (WIN_IDCMP0 | WIN_IDCMP1)
- #define ZB_LEFT 20
- #define ZB_TOP 1
- #define ZB_WIDTH 150
-
- #define AR_ITX 24
- #define AR_ITY 12
- #define AR_OKX 6
- #define AR_OKY 3
- #define AR_WX 320
- #define AR_WY 60
-
- /**
- | Local global variables:
- | - a pointer to this task Process structure;
- | - storage for this process' pr_WindowPtr.
- **/
-
- static struct Process *mySelf = NULL;
- static APTR save_pr_WindowPtr;
-
- /**
- | Local procedure prototypes
- **/
-
- static void HelpScreen(void);
- static void IntuiInit(void);
-